home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmSplash
- BorderStyle = 0 'None
- ClientHeight = 4500
- ClientLeft = 1140
- ClientTop = 1665
- ClientWidth = 7545
- ControlBox = 0 'False
- Height = 4905
- Left = 1080
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "Splash.frx":0000
- ScaleHeight = 4500
- ScaleWidth = 7545
- ShowInTaskbar = 0 'False
- Top = 1320
- Width = 7665
- Begin VB.Timer SplashTimer
- Interval = 1500
- Left = 6840
- Top = 360
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- ' make them wait a bit
- Screen.MousePointer = 11
- ' center form on the screen
- Me.Top = (Screen.Height - Me.Height) \ 2
- Me.Left = (Screen.Width - Me.Width) \ 2
- End Sub
- Private Sub SplashTimer_Timer()
- SplashTimer.Enabled = False
- Load frmMain
- frmMain.Show
- End Sub
-